From 9e300e0ff0c9d93cbaeaa86c1e2a560523107382 Mon Sep 17 00:00:00 2001 From: Sebastien Castiel Date: Mon, 29 Jan 2024 22:37:13 -0500 Subject: Use React’s cache to avoid some queries to the database MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/groups/[groupId]/balances/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/app/groups/[groupId]/balances') diff --git a/src/app/groups/[groupId]/balances/page.tsx b/src/app/groups/[groupId]/balances/page.tsx index 31dbf63..b35a379 100644 --- a/src/app/groups/[groupId]/balances/page.tsx +++ b/src/app/groups/[groupId]/balances/page.tsx @@ -1,3 +1,4 @@ +import { cached } from '@/app/cached-functions' import { BalancesList } from '@/app/groups/[groupId]/balances-list' import { ReimbursementList } from '@/app/groups/[groupId]/reimbursement-list' import { @@ -7,7 +8,7 @@ import { CardHeader, CardTitle, } from '@/components/ui/card' -import { getGroup, getGroupExpenses } from '@/lib/api' +import { getGroupExpenses } from '@/lib/api' import { getBalances, getSuggestedReimbursements } from '@/lib/balances' import { Metadata } from 'next' import { notFound } from 'next/navigation' @@ -21,7 +22,7 @@ export default async function GroupPage({ }: { params: { groupId: string } }) { - const group = await getGroup(groupId) + const group = await cached.getGroup(groupId) if (!group) notFound() const expenses = await getGroupExpenses(groupId) -- cgit v1.3